home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / win_e_h / hlptrix.zip / EMBWW.ZIP / EMBED.H < prev    next >
Text File  |  1992-07-10  |  613b  |  34 lines

  1. // string table constants
  2.  
  3. #define IDS_ERROR 100
  4. #define IDS_CLASS 110
  5.  
  6.  
  7. // misc. constants
  8.  
  9. #define MAXCHARS 18
  10. #define ERRORSIZE 30
  11. #define EXTRAWIDTH 5
  12. #define EXTRAHEIGHT 5
  13. #define MAJORVERSION 0
  14. #define MINORVERSION 0
  15.  
  16.  
  17. // functions
  18.  
  19. LRESULT CALLBACK EmbedWindowProc (HWND,UINT,WPARAM,LPARAM);
  20. void DrawFace(HDC);
  21. BOOL fGetFaceStatus(HWND);
  22. HBITMAP hCreateBmpHandle(HWND,HDC);
  23. POINT ptGetErrorSize(HDC);
  24. // int FAR PASCAL WEP (int);
  25.  
  26. // data structures
  27.  
  28. typedef struct {
  29.     EWDATA ed;
  30.     char chFileName[127];
  31.     char chAuthorData[127];
  32.     BOOL gfFace;
  33.     } GLOBALDATA;
  34.